home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / Apps / Utilities / Unix / CommandMon / Controller.h < prev    next >
Text File  |  1992-12-26  |  365b  |  23 lines

  1. /* by Jason Beaver */
  2.  
  3. #import <objc/Object.h>
  4. #import <dpsclient/dpsclient.h>
  5.  
  6. @interface Controller:Object
  7. {
  8.     id unixObject;
  9.     id theIndicator;
  10.     id outputText;
  11.     id commandField;
  12.     char command[1024];
  13.     float time;
  14.     DPSTimedEntry timer;
  15. }
  16.  
  17. - setCommand:sender;
  18. - setTime:sender;
  19. - (void)doCommand;
  20. - setInterval;
  21. - windowWillResize:sender toSize:(NXSize *)size;
  22. @end
  23.